home *** CD-ROM | disk | FTP | other *** search
Text File | 1993-12-14 | 2.6 KB | 119 lines | [TEXT/MPS ] |
- {
- Created: 11:37 AM Fri, 30 Apr 1993
- AETelephony.p
- Pascal Interface to the Apple Event Registry
-
- Copyright Apple Computer, Inc. 1992-93
- All rights reserved
- }
-
-
- {$IFC UNDEFINED UsingIncludes}
- {$SETC UsingIncludes := 0}
- {$ENDC}
-
- {$IFC NOT UsingIncludes}
- UNIT AETelephony;
- INTERFACE
- {$ENDC}
-
- {$IFC UNDEFINED UsingAETelephony}
- {$SETC UsingAETelephony := 1}
-
-
- CONST
- cCallAppearance = 'CA ';
- cDN = 'DN ';
- cParty = 'cPty';
- cPhoneNumber = 'cPhn';
- cTerminal = 'TERM';
- enumDNType = 'DNTy';
- enumForwardType = 'FWD ';
- enumInRedirectionType = 'IRTy';
- enumOutRedirectionType = 'ORTy';
- enumRedirectionType = 'RDTy';
- kAEAnswerCall = 'ANSW';
- kAEBusyForwarded = 'BFWD';
- kAEBusyNoAnsForwarded = 'BNAF';
- kAEConference = 'CONF';
- kAEDeflect = 'DFLC';
- kAEDialDigits = 'DIAL';
- kAEDropCall = 'DROP';
- kAEExternalDN = 'DNEx';
- kAEForward = 'FRWD';
- kAEForwarded = 'UFWD';
- kAEHoldCall = 'HOLD';
- kAEInternalDN = 'DNIn';
- kAEInternalOnly = 'DNIo';
- kAEMakeCall = 'CALL';
- kAENoAnsForwarded = 'NFWD';
- kAENotifyDependency = 'Notf';
- kAENotRedirected = 'NRdr';
- kAEPark = 'Prk ';
- kAERedirect = 'REDR';
- kAERegisterDependency = 'REGD';
- kAEReleaseDependency = 'RLED';
- kAETelephonyEvents = 'TELE';
- kAETransfer = 'TRSF';
- kAEUnknown = 'DNUn';
- keyAEAdditionalParty = 'adPy';
- keyAEChangedObject = 'Nfor';
- keyAECountryCode = 'pCCd';
- keyAEDialPlanRules = 'DPRS';
- keyAEDigits = 'DIGS';
- keyAEExtension = 'pExt'
- keyAEForwardType = 'FDTy';
- keyAEHold = 'bHLD';
- keyAENotificationID = 'NfID';
- keyAENotifyee = 'Nfye';
- keyAENotifyProperties = 'NfPr';
- keyAENumRings = 'NmRg';
- keyAEPark = 'bPRK';
- keyAEParkID = 'PKID';
- keyAEParkRetrieveID = 'PRID';
- keyAEProtoCA = 'PRCA';
- keyAERedirectionType = 'RDTy';
- keyAESetForward = 'bFWD';
- keyAESourceDN = 'SDN ';
- keyAESubaddress = 'pSbA';
- keyAESubscriberNumber = 'pSbs';
- keyAETrunkCode = 'pTCd';
- pAnswered = 'ANSW';
- pBusy = 'BUSY';
- pBusyForwardedParty = 'pBFW';
- pCountryCode = 'pCCd';
- pDialPlanRules = 'pDPR';
- pDigitsReceived = 'pDiR';
- pDigitsReceivedCache = 'pDRC';
- pDisplay = 'pDsp';
- pDNType = 'DNTy';
- pDropped = 'DRPD';
- pExtension = 'pExt';
- pForwarded = 'FWD ';
- pForwardedParty = 'FWDP';
- pForwardingParty = 'CFWP';
- pHeld = 'HELD';
- pIncoming = 'CAin';
- pInRedirected = 'pIRR';
- pInRedirectedParty = 'pIRP';
- pNoAnsForwardedParty = 'pNFW';
- pOtherParty = 'Prty';
- pOutRedirected = 'pORR';
- pOutRedirectedParty = 'pORP';
- pParked = 'pKRT';
- pParkRetrieved = 'pKRR';
- pParty = 'pPTY';
- pPickedUp = 'PKUP';
- pSubaddress = 'pSbA';
- pSubscriberNumber = 'pSbs';
- pTrunkCode = 'pTCd';
- typeParty = 'cPty';
- typePhoneNumber = 'cPhn';
-
-
- {$ENDC} { UsingAETelephony }
-
- {$IFC NOT UsingIncludes}
- END.
- {$ENDC}
-